home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zpath.c < prev    next >
C/C++ Source or Header  |  1996-05-26  |  4KB  |  175 lines

  1. /* Copyright (C) 1989, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zpath.c */
  20. /* Basic path operators */
  21. #include "math_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "igstate.h"
  26. #include "gsmatrix.h"
  27. #include "gspath.h"
  28. #include "store.h"
  29.  
  30. /* Forward references */
  31. private int near common_to(P2(os_ptr,
  32.   int (*)(P3(gs_state *, floatp, floatp))));
  33. private int near common_curve(P2(os_ptr,
  34.   int (*)(P7(gs_state *, floatp, floatp, floatp, floatp, floatp, floatp))));
  35.  
  36. /* - newpath - */
  37. private int
  38. znewpath(register os_ptr op)
  39. {    return gs_newpath(igs);
  40. }
  41.  
  42. /* - currentpoint <x> <y> */
  43. private int
  44. zcurrentpoint(register os_ptr op)
  45. {    gs_point pt;
  46.     int code = gs_currentpoint(igs, &pt);
  47.     if ( code < 0 ) return code;
  48.     push(2);
  49.     make_real(op - 1, pt.x);
  50.     make_real(op, pt.y);
  51.     return 0;
  52. }
  53.  
  54. /* <x> <y> moveto - */
  55. int
  56. zmoveto(os_ptr op)
  57. {    return common_to(op, gs_moveto);
  58. }
  59.  
  60. /* <dx> <dy> rmoveto - */
  61. int
  62. zrmoveto(os_ptr op)
  63. {    return common_to(op, gs_rmoveto);
  64. }
  65.  
  66. /* <x> <y> lineto - */
  67. int
  68. zlineto(os_ptr op)
  69. {    return common_to(op, gs_lineto);
  70. }
  71.  
  72. /* <dx> <dy> rlineto - */
  73. int
  74. zrlineto(os_ptr op)
  75. {    return common_to(op, gs_rlineto);
  76. }
  77.  
  78. /* Common code for [r](move/line)to */
  79. private int near
  80. common_to(os_ptr op, int (*add_proc)(P3(gs_state *, floatp, floatp)))
  81. {    float opxy[2];
  82.     int code;
  83.     if (    (code = num_params(op, 2, opxy)) < 0 ||
  84.         (code = (*add_proc)(igs, opxy[0], opxy[1])) < 0
  85.        ) return code;
  86.     pop(2);
  87.     return 0;
  88. }
  89.  
  90. /* <x1> <y1> <x2> <y2> <x3> <y3> curveto - */
  91. int
  92. zcurveto(register os_ptr op)
  93. {    return common_curve(op, gs_curveto);
  94. }
  95.  
  96. /* <dx1> <dy1> <dx2> <dy2> <dx3> <dy3> rcurveto - */
  97. int
  98. zrcurveto(register os_ptr op)
  99. {    return common_curve(op, gs_rcurveto);
  100. }
  101.  
  102. /* Common code for [r]curveto */
  103. private int near
  104. common_curve(os_ptr op,
  105.   int (*add_proc)(P7(gs_state *, floatp, floatp, floatp, floatp, floatp, floatp)))
  106. {    float opxy[6];
  107.     int code;
  108.     if ( (code = num_params(op, 6, opxy)) < 0 ) return code;
  109.     code = (*add_proc)(igs, opxy[0], opxy[1], opxy[2], opxy[3], opxy[4], opxy[5]);
  110.     if ( code >= 0 ) pop(6);
  111.     return code;
  112. }
  113.  
  114. /* - closepath - */
  115. int
  116. zclosepath(register os_ptr op)
  117. {    return gs_closepath(igs);
  118. }
  119.  
  120. /* - initclip - */
  121. private int
  122. zinitclip(register os_ptr op)
  123. {    return gs_initclip(igs);
  124. }
  125.  
  126. /* - clip - */
  127. private int
  128. zclip(register os_ptr op)
  129. {    return gs_clip(igs);
  130. }
  131.  
  132. /* - eoclip - */
  133. private int
  134. zeoclip(register os_ptr op)
  135. {    return gs_eoclip(igs);
  136. }
  137.  
  138. /* <bool> .setclipoutside - */
  139. private int
  140. zsetclipoutside(register os_ptr op)
  141. {    int code;
  142.     check_type(*op, t_boolean);
  143.     code = gs_setclipoutside(igs, op->value.boolval);
  144.     if ( code >= 0 )
  145.       pop(1);
  146.     return code;
  147. }
  148.  
  149. /* - .currentclipoutside <bool> */
  150. private int
  151. zcurrentclipoutside(register os_ptr op)
  152. {    push(1);
  153.     make_bool(op, gs_currentclipoutside(igs));
  154.     return 0;
  155. }
  156.  
  157. /* ------ Initialization procedure ------ */
  158.  
  159. BEGIN_OP_DEFS(zpath_op_defs) {
  160.     {"0clip", zclip},
  161.     {"0closepath", zclosepath},
  162.     {"0.currentclipoutside", zcurrentclipoutside},
  163.     {"0currentpoint", zcurrentpoint},
  164.     {"6curveto", zcurveto},
  165.     {"0eoclip", zeoclip},
  166.     {"0initclip", zinitclip},
  167.     {"2lineto", zlineto},
  168.     {"2moveto", zmoveto},
  169.     {"0newpath", znewpath},
  170.     {"6rcurveto", zrcurveto},
  171.     {"2rlineto", zrlineto},
  172.     {"2rmoveto", zrmoveto},
  173.     {"1.setclipoutside", zsetclipoutside},
  174. END_OP_DEFS(0) }
  175.